home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / mditot_1 / mdichild.cab / MDIChild2Form.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-05-24  |  1.8 KB  |  58 lines

  1. VERSION 5.00
  2. Object = "{167C9DC1-D0B3-11D2-9E7C-0060B0A4C27E}#15.0#0"; "m_mdiChild32.ocx"
  3. Begin VB.Form MDIChild2Form 
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   4545
  6.    ClientLeft      =   165
  7.    ClientTop       =   735
  8.    ClientWidth     =   5730
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   4545
  11.    ScaleWidth      =   5730
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin M_mdiChild32.mdiChildDll mdiChildDll 
  14.       Left            =   1380
  15.       Top             =   2820
  16.       _ExtentX        =   503
  17.       _ExtentY        =   476
  18.       Visible         =   -1  'True
  19.       UserSpecifiedID =   ""
  20.       Enabled         =   -1  'True
  21.    End
  22.    Begin VB.TextBox Text1 
  23.       Height          =   1305
  24.       Left            =   2040
  25.       TabIndex        =   0
  26.       Top             =   1500
  27.       Width           =   2925
  28.    End
  29.    Begin VB.Menu mnuFile 
  30.       Caption         =   "File"
  31.       Begin VB.Menu mnuExit 
  32.          Caption         =   "Exit"
  33.       End
  34.    End
  35. Attribute VB_Name = "MDIChild2Form"
  36. Attribute VB_GlobalNameSpace = False
  37. Attribute VB_Creatable = False
  38. Attribute VB_PredeclaredId = True
  39. Attribute VB_Exposed = False
  40. '----------------------------------------------------------------------
  41. 'MDIChildTest
  42. 'Copyright (c) Millennium Software AS
  43. 'Redistribution of Code Prohibited
  44. 'Finished:    02.03.99 17:59:45
  45. 'Author:      Morten Ladstein (morten@millennium.no)
  46. 'Company:     Millennium Software AS
  47. 'Web:         http://www.millennium.no
  48. 'Description:
  49. 'Comments:
  50. '----------------------------------------------------------------------
  51. Option Explicit
  52. Private Sub Form_Resize()
  53.   Text1.Move 30, 60, Abs(Width - 180), Abs(Height - 760)
  54. End Sub
  55. Private Sub mnuExit_Click()
  56.   Unload Me
  57. End Sub
  58.